home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / lib / Makefile.in < prev    next >
Makefile  |  1995-05-04  |  1KB  |  56 lines

  1. # Makefile for Xconq library.
  2. # Copyright (C) 1994, 1995 Stanley T. Shebs.
  3.  
  4. # Xconq is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. srcdir = .
  10.  
  11. SHELL = /bin/sh
  12.  
  13. # Host and target-dependent makefile fragments come in here.
  14. ####
  15. # End of host and target-dependent makefile fragments.
  16.  
  17. IMFS =    $(srcdir)/aircraft.imf \
  18.     $(srcdir)/arms.imf \
  19.     $(srcdir)/colors.imf \
  20.     $(srcdir)/emblems.imf \
  21.     $(srcdir)/fantasy.imf \
  22.     $(srcdir)/flags.imf \
  23.     $(srcdir)/insects.imf \
  24.     $(srcdir)/milsym.imf \
  25.     $(srcdir)/misc.imf \
  26.     $(srcdir)/sf.imf \
  27.     $(srcdir)/ships.imf \
  28.     $(srcdir)/standard.imf \
  29.     $(srcdir)/tanks.imf \
  30.     $(srcdir)/terrain.imf
  31.  
  32. all:
  33.  
  34. imf.dir:    $(IMFS)
  35.     echo "ImageFamilyName FileName" >imf.tmp
  36.     sh $(srcdir)/crunch-imf $(IMFS) | sed -e s,$(srcdir)/,, >>imf.tmp
  37.     echo ". ." >>imf.tmp
  38.     $(srcdir)/../move-if-change imf.tmp imf.dir
  39.  
  40. install: all install-only
  41.  
  42. install-only:
  43.  
  44. clean:
  45.  
  46. distclean: clean
  47.     rm -f Makefile config.status
  48.  
  49. extraclean: distclean
  50.     rm -f *~* .*~*
  51.  
  52. realclean: distclean
  53.  
  54. Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  55.     $(SHELL) config.status
  56.